Part2 - Yocto tutorial
Build custom linux image with yocto
Table of Content
init environment#
# from poky folder
source oe-init-build-env <location of build folder>
create folder and files under chosen build location
local.conf bblayers.conf
Build#
Building custom linux distribution
# bitbake <image name>
bitbake core-image-minimal
Fix
If bitbake failed to resolve URI
set CONNECTIVITY_CHECK_URIS field in conf/local.conf
```bash title=”so 52395512”
check connectivity using google#
CONNECTIVITY_CHECK_URIS = “https://www.google.com/”
skip connectivity checks#
CONNECTIVITY_CHECK_URIS = “” ```